home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Status
- Caption = "VB-AWK: Status Window"
- ClientHeight = 3270
- ClientLeft = 1185
- ClientTop = 2460
- ClientWidth = 7845
- Height = 3675
- Left = 1125
- LinkTopic = "Form1"
- ScaleHeight = 3270
- ScaleWidth = 7845
- Top = 2115
- Visible = 0 'False
- Width = 7965
- Begin CommandButton SaveBtn
- Caption = "Save"
- Height = 375
- Left = 4920
- TabIndex = 4
- Top = 2760
- Width = 1215
- End
- Begin CommandButton StopBtn
- Cancel = -1 'True
- Caption = "Stop"
- Height = 375
- Left = 3480
- TabIndex = 3
- Top = 2760
- Width = 1215
- End
- Begin CommandButton Command1
- Caption = "OK"
- Default = -1 'True
- Height = 375
- Left = 2040
- TabIndex = 1
- Top = 2760
- Width = 1215
- End
- Begin Frame Frame1
- Caption = "Status:"
- Height = 2535
- Left = 120
- TabIndex = 0
- Top = 120
- Width = 7575
- Begin ListBox List1
- Height = 1980
- Left = 240
- TabIndex = 2
- Top = 360
- Width = 7095
- End
- End
- Sub Command1_Click ()
- End
- End Sub
- Sub Form_Load ()
- Caption = APPNAME & Right$(Caption, Len(Caption) - 6)
- End Sub
- Sub SaveBtn_Click ()
- On Error GoTo Cancelled
- FileSave.CMDialog1.CancelError = True
- FileSave.CMDialog1.DefaultExt = ".*"
- FileSave.CMDialog1.Filename = "VB-AWK.LOG"
- FileSave.CMDialog1.Action = 2
- SaveListBox (FileSave.CMDialog1.Filename), Status.List1
- Exit Sub
- Cancelled:
- Exit Sub
- End Sub
- Sub StopBtn_Click ()
- ABORT = True
- End Sub
-